home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zwppm.c < prev   
C/C++ Source or Header  |  1996-10-05  |  5KB  |  171 lines

  1. /* Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zwppm.c */
  20. /* Obsolete PPM-file-writing operator */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "stream.h"
  26. #include "files.h"
  27. #include "gscdefs.h"
  28. #include "gsmatrix.h"            /* for gxdevice.h */
  29. #include "gxdevice.h"
  30. #include "gxdevmem.h"
  31.  
  32. /* Forward references */
  33. private int gs_writeppmfile(P2(gx_device_memory *, FILE *));
  34.  
  35. /* <file> <device> writeppmfile - */
  36. private int
  37. zwriteppmfile(register os_ptr op)
  38. {    stream *s;
  39.     int code;
  40.     check_read_type(*op, t_device);
  41.     check_write_file(s, op - 1);
  42.     if ( !gs_device_is_memory(op->value.pdevice) )
  43.       return_error(e_rangecheck);
  44.     sflush(s);
  45.     code = gs_writeppmfile((gx_device_memory *)(op->value.pdevice), s->file);
  46.     if ( code >= 0 )
  47.       pop(2);
  48.     return code;
  49. }
  50.  
  51. /* ------ Initialization procedure ------ */
  52.  
  53. BEGIN_OP_DEFS(zwppm_op_defs) {
  54.     {"2writeppmfile", zwriteppmfile},
  55. END_OP_DEFS(0) }
  56.  
  57. /* ------ Non-operator routines ------ */
  58.  
  59. /* Dump the contents of a memory device in PPM format. */
  60. private int
  61. gs_writeppmfile(gx_device_memory *md, FILE *file)
  62. {    int raster = gx_device_raster((gx_device *)md, 0);
  63.     int height = md->height;
  64.     int depth = md->color_info.depth;
  65.     uint rsize = raster * 3;    /* * 3 just for mapped color */
  66.     byte *row = (byte *)gs_malloc(rsize, 1, "ppm file buffer");
  67.     const char *header;
  68.     int y;
  69.     int code = 0;            /* return code */
  70.     if ( row == 0 )            /* can't allocate row buffer */
  71.       return_error(e_VMerror);
  72.  
  73.     /* A PPM file consists of: magic number, comment, */
  74.     /* width, height, maxvalue, (r,g,b).... */
  75.  
  76.     /* Dispatch on the type of the device -- 1-bit mono, */
  77.     /* 8-bit (gray scale or color), 24- or 32-bit true color. */
  78.  
  79.     switch ( depth )
  80.        {
  81.     case 1:
  82.       header = "P4\n# %s 1 bit mono image dump\n%d %d\n";
  83.       break;
  84.  
  85.     case 8:
  86.       header = (gx_device_has_color(md) ?
  87.         "P6\n# %s 8 bit mapped color image dump\n%d %d\n255\n" :
  88.         "P5\n# %s 8 bit gray scale image dump\n%d %d\n255\n");
  89.       break;
  90.  
  91.     case 24:
  92.       header = "P6\n# %s 24 bit color image dump\n%d %d\n255\n";
  93.       break;
  94.  
  95.     case 32:
  96.       header = "P6\n# %s 32 bit color image dump\n%d %d\n255\n";
  97.       break;
  98.  
  99.     default:            /* shouldn't happen! */
  100.       code = e_undefinedresult;
  101.       goto done;
  102.        }
  103.  
  104.     /* Write the header. */
  105.     fprintf(file, header, gs_product, md->width, height);
  106.  
  107.     /* Dump the contents of the image. */
  108.     for ( y = 0; y < height; y++ )
  109.        {    int count;
  110.         register byte *from, *to, *end;
  111.         (*dev_proc(md, get_bits))((gx_device *)md, y, row, NULL);
  112.         switch ( depth )
  113.            {
  114.         case 8:
  115.            {    /* Mapped color, consult the map. */
  116.             if ( gx_device_has_color(md) )
  117.                {    /* Map color */
  118.                 const byte *palette = md->palette.data;
  119.                 from = row + raster + raster;
  120.                 memcpy(from, row, raster);
  121.                 to = row;
  122.                 end = from + raster;
  123.                 while ( from < end )
  124.                    {    register const byte *cp =
  125.                       palette + (int)*from++ * 3;
  126.                     to[0] = cp[0];    /* red */
  127.                     to[1] = cp[1];    /* green */
  128.                     to[2] = cp[2];    /* blue */
  129.                     to += 3;
  130.                    }
  131.                 count = raster * 3;
  132.                }
  133.             else
  134.                {    /* Map gray scale */
  135.                 register const byte *palette =
  136.                   md->palette.data;
  137.                 from = to = row, end = row + raster;
  138.                 while ( from < end )
  139.                   *to++ = palette[(int)*from++ * 3];
  140.                 count = raster;
  141.                }
  142.            }
  143.             break;
  144.         case 32:
  145.            {    /* This case is different, because we must skip */
  146.             /* every fourth byte. */
  147.             from = to = row, end = row + raster;
  148.             while ( from < end )
  149.                {    /* from[0] is unused */
  150.                 to[0] = from[1];    /* red */
  151.                 to[1] = from[2];    /* green */
  152.                 to[2] = from[3];    /* blue */
  153.                 from += 4;
  154.                 to += 3;
  155.                }
  156.             count = to - row;
  157.            }
  158.             break;
  159.         default:
  160.             count = raster;
  161.            }
  162.         if ( fwrite(row, 1, count, file) < count )
  163.            {    code = e_ioerror;
  164.             goto done;
  165.            }
  166.        }
  167.  
  168. done:    gs_free((char *)row, rsize, 1, "ppm file buffer");
  169.     return code;
  170. }
  171.